home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue43 / construc / Listing2.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-02-05  |  261 b   |  10 lines

  1. procedure TNewsgroupServer.JoinNewsgroup(Newsgroup: PChar;
  2.   out NumberOfArticles: HResult);
  3. begin
  4.   with Form1 do
  5.   begin
  6.     BNNTP1.JoinNewsgroup(Newsgroup);
  7.     NumberOfArticles := BNNTP1.LastArticle - BNNTP1.FirstArticle
  8.   end
  9. end {JoinNewsgroup};
  10.